home *** CD-ROM | disk | FTP | other *** search
/ Programming with VisualAge for Java / IBMVJAVA.ISO / scrapbook / ch02 / page 2 < prev   
Encoding:
Text File  |  1997-07-23  |  237 b   |  19 lines

  1. int x = 10;
  2. int y = ~x;
  3. System.out.println(y);
  4.  
  5. x = 3;
  6. y = x & 1;
  7. System.out.println(y);
  8.  
  9. x = 16;
  10. y = x >> 1;
  11. System.out.println(y);
  12.  
  13. int test;
  14. do{
  15.         System.out.println("In while loop");
  16.         test = 0;
  17. }while( test > 0);
  18.  
  19.